home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000391_news@columbia.edu _Tue Sep 24 16:26:12 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id QAA15862 for <kermit.misc@watsun.cc.columbia.edu>; Tue, 24 Sep 1996 16:26:12 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id QAA29983 for kermit.misc@watsun; Tue, 24 Sep 1996 16:26:09 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.os.linux.misc,comp.os.linux.x,dc.org.linux-users,comp.protocols.kermit.misc
  7. Subject: Re: Using Seyon with kermit ?
  8. Date: 24 Sep 1996 20:25:47 GMT
  9. Organization: Columbia University
  10. Lines: 38
  11. Message-ID: <529g4b$3rl@apakabar.cc.columbia.edu>
  12. References: <5274pd$a90@news.jhu.edu> <529bst$1bs@apakabar.cc.columbia.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14. Xref: news.columbia.edu comp.os.linux.misc:147539 comp.os.linux.x:47416 dc.org.linux-users:1346 comp.protocols.kermit.misc:5956
  15.  
  16. In article <529bst$1bs@apakabar.cc.columbia.edu>,
  17. Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  18. : ...
  19. :  2. I assume you are dialing or Telnet'ing out with Seyon.  In that case,
  20. :     you have to pass the file descriptor that Seyon is using for the
  21. :     connection along to Kermit, using "-j n", where n is the numeric
  22. :     file descriptor (for a serial connection) or "-F n" (for a Telnet
  23. :     connection).
  24. :
  25. Sorry, that should be "-l n", not "-j n".
  26.  
  27. : If Seyon does not give you a way to access and pass along the file
  28. : descriptor, but it starts up the Kermit program with its standard i/o
  29. : redirected to its (Seyon's) communications file descriptor, you can also
  30. : experiment with the following method, which worked here in brief tests on
  31. : SunOS.  Instead of having Seyon use "kermit -r" or "kermit -s filename" as
  32. : its Kermit protocol commands, use something like this:
  33. :   For serial connections:
  34. :     kermit -YqQj 0 -r                     <-- to receive
  35. :     kermit -YqQj 0 -s filename(s)         <-- to send one or more files
  36. Again, that should be "-l", not "-j":
  37.  
  38.     kermit -YqQl 0 -r                     <-- to receive
  39.     kermit -YqQl 0 -s filename(s)         <-- to send one or more files
  40.  
  41. : Command line options:
  42. : ...
  43. :   l 0  - transfer files using file descriptor 0 for a serial connection
  44. :   F 0  - transfer files using file descriptor 0 for a Telnet connection
  45. :
  46. Note: "l", not "j".
  47.  
  48. - Frank
  49.  
  50.